home *** CD-ROM | disk | FTP | other *** search
- ;Installer script for HTML Editor version 1.32
- ;Author: Adam 'Sherwood' Zaparcinski
-
- (message "Welcome to the instalation of HTML Editor v 1.32\n\n"
- "Note that This instalation script installs HTML Editor "
- "in one directory so If You'll want to uninstall it then "
- "just delete directroy where all files were copied"
- )
-
- ;choose the directory
-
- (set destpath
- (askdir
- (prompt "Please choose the directory where HTML Editor will be installed\n"
- "A new directory called 'HTMLEdit' will be created")
- (default @Default-dest)
- (help @askdir-help)
- )
- )
-
- (set destpath (tackon destpath "HTMLEdit"))
-
- ;(makedir destpath (safe))
-
- (set @Default-dest destpath)
-
- ;Copying files
-
- (copyfiles
- (prompt "Copying files")
- (help @copyfiles-help)
- (source "")
- (dest @Default-dest)
- (all)
- (infos)
- )
-
- (message "HTML Editor is installed in Your directory:"
- @Default-Dest
- "\nHave a good fun!"
- )
-